home *** CD-ROM | disk | FTP | other *** search
Text File | 1991-05-01 | 566 b | 16 lines | [TEXT/MPS ] |
- (* Operations on internal representations of values.
- ALL OPERATIONS PROVIDED HERE ARE UNSAFE AND NOT FOR THE CASUAL USER.
- Hence they are undocumented... *)
-
- type obj
- ;;
- value Repr : 'a -> obj = 1 "identity"
- and magic_obj : obj -> 'a = 1 "identity"
- and magic : 'a -> 'b = 1 "identity"
- and obj_tag : obj -> int = 1 "tag_of"
- and obj_size : obj -> int = 1 "vect_length"
- and obj_field : obj -> int -> obj = 2 "get_vect_item"
- and set_obj_field : obj -> int -> obj -> obj = 3 "set_vect_item"
- and obj_block : int -> int -> obj = 2 "obj_block" "alloc"
- ;;
-